home *** CD-ROM | disk | FTP | other *** search
- _root.autos = 10;
- colr = 2;
- i = 2;
- while(i < _root.autos)
- {
- car1.duplicateMovieClip("car" + i,100 + i);
- this["car" + i].ID = colr;
- this["car" + i].wieoft = random(500) * i;
- this["car" + i].speed = 2;
- colr++;
- if(colr > 4)
- {
- colr = 1;
- }
- i++;
- }
- this.car1.ID = 1;
- this.car1.wieoft = 1000;
- this.car1.speed = 2;
-